home *** CD-ROM | disk | FTP | other *** search
/ Gekikoh Dennoh Club 2 / Gekikoh Dennoh Club Vol. 2 (Japan).7z / Gekikoh Dennoh Club Vol. 2 (Japan) (Track 01).bin / kowin / font / fonted31.lzh / makefile < prev    next >
Makefile  |  1990-11-23  |  855b  |  31 lines

  1. #
  2. # Fonted3.win makefile  小笠原博之
  3. #            SPS0783 COR.
  4. #
  5. CC = gcc
  6. CFLAGS = -O  -fstrength-reduce -fomit-frame-pointer -finline-functions
  7. LDFLAGS = -s
  8. #
  9. OFILES = fonted3.o fed3func.o fed3sub.o fed3asm.o fed3pop.o OK.o
  10. OFILES2 = usk_win.o usk_file.o OK.o usk_info.o
  11. #
  12. fonted3.win: $(OFILES)
  13.     $(CC) $(CCFLAGS) $(OFILES) -o fonted3.win a:\lib\winop.a
  14.  
  15. fonted3.o:    fonted3.c  #fed3const.h fonted3.h mpat.h
  16. fed3func.o:    fed3func.c #fed3const.h fonted3.h
  17. fed3sub.o:    fed3sub.c #fed3const.h fonted3.h fed3mspat.h
  18. fed3pop.o:    fed3pop.c #fed3const.h fonted3.h
  19. fed3asm.o:    fed3asm.s
  20.  
  21. #
  22. # Usk_Win.win
  23. #
  24. usk_win.win: $(OFILES2)
  25.     $(CC) $(CCFLAGS) $(OFILES2) -o usk_win.win
  26. usk_win.o:    usk_win.c #fed3const.h fonted3.h
  27. usk_file.o:    usk_file.c #fed3const.h fonted3.h
  28. OK.o:        OK.c #fed3const.h fonted3.h
  29. usk_info.o:    usk_info.c #fed3const.h fonted3.h
  30.  
  31.